Boolean expressions can
also be combined in the following ways...
if a<b and
c<d
...
end
if
In this example, the boolean
expression only evaluates to true if a is less than b AND c is
less than d.
if a<b or
c<d
...
end
if
In this example, the boolean
expression only evaluates to true if a is less than b OR c is
less than d.
A not operator is also
available...
if not
a=b
...
end
if
This boolean expression
only evaluates to true if a DOES NOT equal b. The not operator
reverses the true/false value of a boolean expression.